home *** CD-ROM | disk | FTP | other *** search
/ Aminet 38 / Aminet 38 (2000)(Schatztruhe)[!][Aug 2000].iso / Aminet / dev / c / CLib-SDI.lha / CLib-SDI / include / inline / example_protos.h next >
Encoding:
C/C++ Source or Header  |  2000-06-25  |  682 b   |  15 lines

  1. #ifndef _VBCCINLINE_EXAMPLE_H
  2. #define _VBCCINLINE_EXAMPLE_H
  3.  
  4. #ifndef EXEC_TYPES_H
  5. #include <exec/types.h>
  6. #endif
  7.  
  8. ULONG __ex_TestRequest(__reg("a0") STRPTR title, __reg("a1") STRPTR body, __reg("a2") STRPTR gadgets, __reg("a6") void *)="\tJSR\t-30(A6)";
  9. #define ex_TestRequest(title, body, gadgets) __ex_TestRequest((title), (body), (gadgets), ExampleBase)
  10.  
  11. ULONG __ex_TestRequest2A(__reg("a0") STRPTR title, __reg("a1") STRPTR body, __reg("a2") STRPTR gadgets, __reg("a3") APTR args, __reg("a6") void *)="\tJSR\t-36(A6)";
  12. #define ex_TestRequest2A(title, body, gadgets, args) __ex_TestRequest2A((title), (body), (gadgets), (args), ExampleBase)
  13.  
  14. #endif /*  _VBCCINLINE_EXAMPLE_H  */
  15.